home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / alangsbs.zip / JEDSCRN.ASM < prev    next >
Assembly Source File  |  1989-02-09  |  4KB  |  86 lines

  1.  
  2.  
  3.  
  4.  
  5.          TITLE  JEDSCRN -- External screen data module for JED editor
  6.  
  7.  
  8. CODE     SEGMENT WORD
  9.          ASSUME CS:CODE
  10.  
  11.  
  12. JEDHelp  PROC FAR
  13.  
  14.          PUBLIC JEDHelp
  15.  
  16.          DB '═══╦═════════╗                                                                  '
  17.          DB '   ║  ╔═╗    ║     Version 1.0 -- Released 1/8/89  --  ALT-X EXITS!             '
  18.          DB '║  ║  ╠═╝ ╔══╣                                                                  '
  19.          DB '╚══╝  ╚═══╩══╝     (c) 1988, 1989  Jeff Duntemann -- ALL RIGHTS RESERVED        '
  20.          DB '                                                                                '
  21.          DB '─────────────────────────────────── COMMAND SET ────────────────────────────────'
  22.          DB 'F1:  Display this screen                │ ^KD: Quit and save file               '
  23.          DB 'F2:  Save current source code file      │ ^KQ: Quit without saving              '
  24.          DB 'F3:  Invoke DEBUG on current .EXE file  │ ^KW: Write marked block to disk       '
  25.          DB 'F4:  Update assemble/link command lines │ ^KR: Read a file to cursor position   '
  26.          DB 'F5:  Shell out to DOS                   │ ^KH: Hide/unhide the marked block     '
  27.          DB 'F6:  Show last assemble/link screen     │ ^KY: Delete marked block              '
  28.          DB 'F7:  Mark beginning of block            │ ^KV: Move marked block                '
  29.          DB 'F8:  Mark end of block                  │ ^KC: Copy marked block                '
  30.          DB 'F9:  Assemble only                      │ ^QL: Undo changes to line             '
  31.          DB 'F10: Assemble/link (if needed) and Go!  │ Alt-F: Change current source code file'
  32.          DB '                                                                                '
  33.          DB '^QR: Move to start of file   ^Y: Delete line   ^T: Delete word  ^QY: Del. to EOL'
  34.          DB '^QC: Move to end of file     ^QF: Find  ^QA: Find/Replace  ^L: Find/repl. again '
  35.          DB '^A:  Move 1 word left        Options: N: Without asking  W: Whole words only    '
  36.          DB '^F:  Move 1 word right                G: Global  U: Ignore case  B: Backwards   '
  37.          DB '                                                                                '
  38.          DB '   <<REMEMBER!!>> If your .ASM file is not a standalone program, but a device   '
  39.          DB '   driver or a library of procedures, pressing F10 may lock up your system!!    '
  40.          DB '                                                                                '
  41. JEDHelp  ENDP
  42.  
  43. JEDBar   PROC FAR
  44.  
  45.          PUBLIC JEDBar
  46.  
  47.          DB 'F1:Help  F2:Save  F3:Debug  F4:Cmds  F5:DOS  F6:Screen  F9:Assemble  F10:Make/Go';
  48.  
  49. JEDBar   ENDP
  50.  
  51. JEDFile  PROC FAR
  52.  
  53.          PUBLIC JEDFile
  54.  
  55.          DB '┌────────────────────────────────────┐'
  56.          DB '│  ═══╦═════════╗  Change work file  │'
  57.          DB '│     ║  ╔═╗    ║                    │'
  58.          DB '│  ║  ║  ╠═╝ ╔══╣  Current work file:│'
  59.          DB '│  ╚══╝  ╚═══╩══╝                    │'
  60.          DB '│                                    │'
  61.          DB '│ New work file:                     │'
  62.          DB '│                                    │'
  63.          DB '│ Enter retains all changes made;    │'
  64.          DB '│ ESC abandons all changes made;     │'
  65.          DB '│ CTRL-X clears field.               │'
  66.          DB '└────────────────────────────────────┘'
  67.  
  68. JEDFile  ENDP
  69.  
  70. JEDErr   PROC FAR
  71.  
  72.          PUBLIC JEDErr
  73.  
  74.          DB '┌────────────────────────────────────────────────────────────┐'
  75.          DB '│ JED error!                                                 │'
  76.          DB '│                                                            │'
  77.          DB '│                                                            │'
  78.          DB '└────────────────────────────────────────────────────────────┘'
  79.  
  80. JEDErr   ENDP
  81.  
  82. CODE     ENDS
  83.  
  84.          END
  85.  
  86.